ocr: L++ - Glossary and EHamples Some key concepts and definitions used in C++: abstract class : an abstract class, is the base or essential class. -binding: when dealing with virtual runctions, the particular version of the function to be selected to execute at run time, or "late binding - constructor: a constructor will specify how a new object of a class will be created and initialized. destructor: a destructor will destroy the class objects created by using constructors and will also deallocate memory used by these objects. rencapsulation: to combine data and runctions that are used to manipula ...